A FOR NEXT loop is complex thing.  Mentioned above, it takes 16 bytes of STACK for it to exist in
	Applesoft.  What we did here is to limit the FOR NEXT Loop to a 16bit value (maximum of 1 to 65536)
	... and eliminating the STEP capability... such as  FOR A=1 to 65000 STEP 3.... you only have the
	capability to FOR 1 to 65535.   There were also clever tricks to prevent comparisons, so instead
	of counting UP from a number to the max... only the MAXIMUM interation is stored and deincremented
	to a count of ZERO... 

		Also to prevent complication... INSIDE the FOR/NEXT loop, it creates an automatic FORCED
	GOSUB.... so you must enter a name of a FUTURE Line Number that is LONGER than 3 bytes in length,
	but fortunately you can name it a larger number... SUCH 2000, 20000 or even a name like GOOPIE.

	Immediately after the command FORCED GOSUB... the program will pick up right where it left off...
	and you dont even have to END the line number your currently on..  JUST REMEMBER, you must now
	make that LINE NUMBER you named later on in your program, or it will crash durring compiling.

	The OTHER thing about FOR NEXT LOOPS... is you can not use the value of the FOR NEXT loop as a variable.
	In applesoft you can  ( FOR A=1 to 10: PRINT A: NEXT )
	To make things faster, you wont ALWAYS use the FOR NEXT as a variable.. if you desire to do the above...

	FOR  -  #1  -  #10   GOSUB "LINEX"

	"LINEX"    LET A = A+1   - PRINT  A - RTS
	
	You have to make your OWN step code in the LET A = A + 1 or A= A+3 statement, inside the line number  "LINEX".

		QUICK REFRENCE GUIDE: FOR/NEXT LOOPS
			Use a FOR in your Applesoft statement.  The Inside of that LOOP must be an external
			line number.. with a number greater than 1000 or a name that is 4 charrecters or
			larger.  Continue coding your program as if the NEXT was already programmed, skipping
			whats inside.  Later, create another LINE Number with the name you gave it previously
			putting whatever was inside it there.  Use END as your last statement.

			If you need STEP Capability, you have to program that in yourself with A=A+2 or 
			whatever required to match your desired code output.  

			With these FOR/NEXT loops you do not create a variable, so if you are using the
			LOOP itself to increment some value, that must be done externally.